home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / vsc92nov.zip / unmake-ident < prev    next >
Text File  |  1992-11-02  |  207b  |  11 lines

  1. #! /bin/sh
  2.  
  3. : Bourne Shell
  4.  
  5. # ident "@(#) unmake-ident (C) M.Blume, Humboldt-Uni Berlin, 1.1"
  6.  
  7. sed -e '/^# ident/s/^[^"]*\(".*"\)/static char ident[] = \1;/' \
  8.     <$1 >tempfile
  9. mv -f tempfile $1
  10. chmod 0444 $1
  11.